import { Button, View, useTheme } from '@aws-amplify/ui-react'; // use any CSS value export const PositionStylePropExample = () => { return ( ); }; // use a design token from the theme object export const PositionThemeTokenExample = () => { const { tokens } = useTheme(); return ( ); }; // use a design token name export const PositionTokenNameExample = () => { return ( ); };